home *** CD-ROM | disk | FTP | other *** search
/ Interactive Media Design Review 1999 / Interactive Media Design Review 1999.iso / pc / allfiles / Zuper / Iamhere.dir / 00048_Script_48 < prev    next >
Text File  |  1999-04-26  |  673b  |  26 lines

  1.  
  2. on bolcursor  
  3.   if the mouseDown then
  4.     set  the height of sprite 10 to 10
  5.     set  the width of sprite 10 to 10
  6.   end if
  7.   
  8.   if the mouseUp then
  9.     set  the height of sprite 10 to 16
  10.     set  the width of sprite 10 to 16
  11.   end if
  12.   set the locH of sprite 10 to the mouseH
  13.   set the locV of sprite 10 to the mouseV
  14. end 
  15.  
  16. on namecursor
  17.   set the locH of sprite 11 to the mouseH
  18.   set the locV of sprite 11 to the mouseV
  19. end
  20.  
  21. on setname
  22.   -- set the text of member "name" to the text of member "nameinput"
  23.   -- set the text of cast "name" to the text of cast "nameinput"
  24.   set the editable of member "nameinput" to false
  25.   go the frame + 1
  26. end